home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / graphic / iterat31.zip / COT.FRM < prev    next >
Text File  |  1993-09-09  |  229b  |  23 lines

  1. ;Iterate! function file
  2. ;by Brent Hugh
  3.  
  4. ;parameter defaults
  5. a=.5
  6. b=.5
  7. c=0
  8. d=0
  9. mu=0
  10.  
  11. ;window defaults
  12. xmin=-20
  13. xmax=20
  14. ymin=-20
  15. ymax=20
  16.  
  17. ;the function itself
  18. x= x + cot(a * x * y)
  19. y= y + cot(b * y / x)
  20.  
  21.  
  22.  
  23.